home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
c
/
jazlib.arc
/
MOVE.ASM
< prev
next >
Wrap
Assembly Source File
|
1986-04-03
|
374b
|
29 lines
title buffer move
name move
assume cs:_text
_text segment public byte 'code'
public _move
_move proc near
push bp
mov bp,sp
push si
push di
mov di,[bp+4] ; get destin
mov si,[bp+6] ; get source
mov cx,[bp+8] ; get number of chars
rep movsb ; move the data
pop di
pop si
mov sp,bp
pop bp
ret
_move endp
_text ends
end